home *** CD-ROM | disk | FTP | other *** search
/ Champak 106 / Vol 106.iso / games / maple_st.swf / scripts / DefineSprite_455 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-04-12  |  533 b   |  16 lines

  1. duplicateMovieClip("_root.arrows.arrow","arrow" + _root.i,16384 + _root.i);
  2. arrown = "arrow" + _root.i;
  3. _root.i += 1;
  4. if(_root.player._xscale >= 0)
  5. {
  6.    _root.arrows[arrown]._x = _root.player._x - 40.05;
  7.    _root.arrows[arrown]._xscale = _root.player._xscale;
  8.    _root.arrows[arrown]._y = _root.player._y + 46.65;
  9. }
  10. else if(_root.player._xscale < 0)
  11. {
  12.    _root.arrows[arrown]._x = _root.player._x + 40.05;
  13.    _root.arrows[arrown]._xscale = _root.player._xscale;
  14.    _root.arrows[arrown]._y = _root.player._y + 46.65;
  15. }
  16.